home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / hmac.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  4KB  |  118 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''HMAC (Keyed-Hashing for Message Authentication) Python module.
  5.  
  6. Implements the HMAC algorithm as described by RFC 2104.
  7. '''
  8.  
  9. def _strxor(s1, s2):
  10.     '''Utility method. XOR the two strings s1 and s2 (must have same length).
  11.     '''
  12.     return ''.join(map((lambda x, y: chr(ord(x) ^ ord(y))), s1, s2))
  13.  
  14. digest_size = None
  15. _secret_backdoor_key = []
  16.  
  17. class HMAC:
  18.     '''RFC2104 HMAC class.
  19.  
  20.     This supports the API for Cryptographic Hash Functions (PEP 247).
  21.     '''
  22.     
  23.     def __init__(self, key, msg = None, digestmod = None):
  24.         '''Create a new HMAC object.
  25.  
  26.         key:       key for the keyed hash object.
  27.         msg:       Initial input for the hash, if provided.
  28.         digestmod: A module supporting PEP 247.  *OR*
  29.                    A hashlib constructor returning a new hash object.
  30.                    Defaults to hashlib.md5.
  31.         '''
  32.         if key is _secret_backdoor_key:
  33.             return None
  34.         
  35.         if digestmod is None:
  36.             import hashlib as hashlib
  37.             digestmod = hashlib.md5
  38.         
  39.         if callable(digestmod):
  40.             self.digest_cons = digestmod
  41.         else:
  42.             
  43.             self.digest_cons = lambda d = ('',): digestmod.new(d)
  44.         self.outer = self.digest_cons()
  45.         self.inner = self.digest_cons()
  46.         self.digest_size = self.inner.digest_size
  47.         if hasattr(self.inner, 'block_size'):
  48.             blocksize = self.inner.block_size
  49.             if blocksize < 16:
  50.                 blocksize = 64
  51.             
  52.         else:
  53.             blocksize = 64
  54.         ipad = '6' * blocksize
  55.         opad = '\\' * blocksize
  56.         if len(key) > blocksize:
  57.             key = self.digest_cons(key).digest()
  58.         
  59.         key = key + chr(0) * (blocksize - len(key))
  60.         self.outer.update(_strxor(key, opad))
  61.         self.inner.update(_strxor(key, ipad))
  62.         if msg is not None:
  63.             self.update(msg)
  64.         
  65.  
  66.     
  67.     def update(self, msg):
  68.         '''Update this hashing object with the string msg.
  69.         '''
  70.         self.inner.update(msg)
  71.  
  72.     
  73.     def copy(self):
  74.         """Return a separate copy of this hashing object.
  75.  
  76.         An update to this copy won't affect the original object.
  77.         """
  78.         other = HMAC(_secret_backdoor_key)
  79.         other.digest_cons = self.digest_cons
  80.         other.digest_size = self.digest_size
  81.         other.inner = self.inner.copy()
  82.         other.outer = self.outer.copy()
  83.         return other
  84.  
  85.     
  86.     def digest(self):
  87.         '''Return the hash value of this hashing object.
  88.  
  89.         This returns a string containing 8-bit data.  The object is
  90.         not altered in any way by this function; you can continue
  91.         updating the object after calling this function.
  92.         '''
  93.         h = self.outer.copy()
  94.         h.update(self.inner.digest())
  95.         return h.digest()
  96.  
  97.     
  98.     def hexdigest(self):
  99.         '''Like digest(), but returns a string of hexadecimal digits instead.
  100.         '''
  101.         return []([ hex(ord(x))[2:].zfill(2) for x in tuple(self.digest()) ])
  102.  
  103.  
  104.  
  105. def new(key, msg = None, digestmod = None):
  106.     """Create a new hashing object and return it.
  107.  
  108.     key: The starting key for the hash.
  109.     msg: if available, will immediately be hashed into the object's starting
  110.     state.
  111.  
  112.     You can now feed arbitrary strings into the object using its update()
  113.     method, and can ask for the hash value at any time by calling its digest()
  114.     method.
  115.     """
  116.     return HMAC(key, msg, digestmod)
  117.  
  118.